home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Libraries / PlayerPRO 4.5.8 / PlayerPRO 4.5.8 Dev.Kit / MADH Library 4.5 / BeOS Examples / mainMADSimple.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-25  |  279 b   |  18 lines  |  [TEXT/EDIT]

  1. #include "RDriver.h"
  2. #include "DriverClass.h"
  3.  
  4. #ifndef __MAINMADH__
  5. #define __MAINMADH__
  6.  
  7. class MyApp : public BApplication
  8. {
  9.     public:
  10.                             MyApp(ulong signature);
  11.                             ~MyApp();
  12.     virtual void RefsReceived(BMessage *msg);
  13.     
  14.             MADDriverClass    *myMADDriverClass;
  15.             
  16. };
  17.  
  18. #endif